home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_10 / 9n10024c < prev    next >
Text File  |  1991-08-12  |  313b  |  13 lines

  1.  
  2. /* --------------------------------------------------------------
  3.  
  4. FUNCTION COUNT_NODES: Just display the counter we've been keeping.
  5.  
  6. -------------------------------------------------------------- */
  7.  
  8. void count_nodes(void)
  9. {
  10.         printf("\n\tThere are %u nodes in the list\n", nodes_in_use);
  11. }
  12.  
  13.